home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / answers / comp / dsp-faq / part3 < prev    next >
Internet Message Format  |  1993-11-23  |  17KB

  1. Path: senator-bedfellow.mit.edu!bloom-beacon.mit.edu!news.kei.com!sol.ctr.columbia.edu!usc!howland.reston.ans.net!agate!usenet
  2. From: phil@ohm.berkeley.edu (Phil Lapsley)
  3. Newsgroups: comp.dsp,comp.answers,news.answers
  4. Subject: comp.dsp FAQ [3 of 4]
  5. Supersedes: <dspthree_749099921@ohm.berkeley.edu>
  6. Followup-To: poster
  7. Date: 23 Nov 1993 15:39:58 GMT
  8. Organization: University of California at Berkeley
  9. Lines: 683
  10. Approved: news-answers-request@MIT.Edu
  11. Distribution: world
  12. Message-ID: <dspthree_754069187@ohm.berkeley.edu>
  13. References: <dsptwo_754069187@ohm.berkeley.edu>
  14. NNTP-Posting-Host: cooley.eecs.berkeley.edu
  15. Summary: This is a periodic posting to comp.dsp that gives information
  16.     on frequently asked questions asked in this newsgroup.
  17. Xref: senator-bedfellow.mit.edu comp.dsp:8181 comp.answers:2771 news.answers:15025
  18.  
  19. Archive-name: dsp-faq/part3
  20. Last-modified: Sun May 30 1993
  21. Version: 1.1
  22.  
  23. Q5.0 What DSP operating systems are available?
  24.  
  25. [This was researched and written by Chuck Corley (chuckc@sr.hp.com)]
  26.  
  27.         Some designers need to use an operating system with a DSP
  28. processor and others don't.  The need for DSP operating system seems to
  29. depend on the task(s) to be performed.
  30.  
  31.         For simple DSP tasks where the DSP is doing only a single
  32. repetitive function, an operating system is usually not needed and
  33. could get in the way.
  34.  
  35.         When the number and complexity of DSP tasks increase, an
  36. operating system of some type may be needed in order to allocate system
  37. resources (RAM, etc.) and to perform multi-tasking, where several tasks
  38. take turns executing.
  39.  
  40.         One example:  A DSP processor may be required to perform non-DSP
  41. jobs in order to eliminate a 'host' processor.  An operating system may
  42. be needed in order to share processing time and resources between the
  43. DSP and non-DSP tasks.
  44.  
  45.         An option for some DSP applications is to write your own DSP
  46. 'task-switching' or 'job allocating' operating system.  Whether this is
  47. the right choice for you depends on how involved your operating system
  48. needs to be, and how much time you have available to spend writing it.
  49.  
  50.         A number of companies now offer pre-written operating systems
  51. that execute on DSP processors.  In exchange for your money they offer
  52. to save you the time and effort of writing and debugging your own
  53. 'operating system' or 'task switcher'.
  54.  
  55.         These companies describe their products as 'real-time' operating
  56. systems.  What 'real-time' means is debated, but it normally means that
  57. the maximum time for the operating system to respond to an external
  58. event is known.  The calculation for measuring this time involves adding
  59. together interrupt response time, task switching time, and other
  60. processor and operating system benchmarks.  'Real-time' also usually
  61. means 'fast'.  Embedded CPU or DSP tasks often require a 'real-time'
  62. response time.
  63.  
  64.         Prices and features vary.  All companies charge for purchasing
  65. their 'development environment', which allows you to develop code which
  66. will run on their operating system.  Some companies also charge a fee
  67. for each product you build that includes their operating system
  68. software.  This is usually called a 'target fee' or 'runtime license'
  69. fee.  Some operating systems have no 'runtime license' fees.
  70.  
  71.         It is *very* important to negotiate what the runtime license fee
  72. will be *in advance*.  If this price is not agreed upon in writing when
  73. the development system is purchased, you could be in a bad position
  74. later.  You will have invested a lot of time and effort writing software
  75. to work with a particular operating system, and when your creation is
  76. produced you could discover that the 'runtime license fee' has increased
  77. or is more than you can afford.  Considering the amount of work you
  78. would have invested in that operating system, you would be in a very
  79. poor bargaining position.
  80.  
  81.     You will also need to decide if having the source code for the
  82. operating system is important to you.  Some companies include it for
  83. free, while others may charge extra.
  84.  
  85.         Features for the DSP operating systems are listed below.  Some
  86. vendors claim that a 'No' listing for a feature doesn't necessarily mean
  87. that their operating system is missing something you need.  Some
  88. companies state that certain features were not appropriate for either a
  89. 'DSP' or a 'real-time' operating system, and so they did not implement
  90. them.  Other companies stated that some features were not appropriate
  91. for their targeted users.
  92.  
  93.         One suggestion for comparing features:  Make a list of the
  94. features you *really* need and compare it against the list below.
  95.  
  96.        Disclaimer:  I've tried to make this information current,
  97. accurate, and impartial, but I can't guarantee this.  This document is
  98. provided as is, with no warranty of any kind.  You should contact the
  99. vendors listed below for the best and most up-to-date information.
  100. Corrections and suggestions for this section on DSP operating systems
  101. should be addressed to chuckc@sr.hp.com
  102.  
  103.  
  104.                             Byte-
  105. Operating System Features:  BOS      Nucleus    RXTC      SPOX      Helios
  106. --------------------------  ------   -------    ----      ----      ------
  107. Preemptive Task Scheduling  Yes      Yes        Yes       Yes       Yes
  108. Time-Sliced Scheduling      Yes      Yes        Yes       No        Yes
  109. Round-Robin Scheduling      ?        Yes        Yes       No        Yes
  110. Parallel Processing         No       No         No        Optional  Yes
  111. Inter-Task Messages         Yes      Yes        Yes       Yes       Yes
  112. Memory Management           Yes      Yes        Yes       Yes       Yes
  113. Interrupt Management        Yes      No         Yes       Yes       Yes
  114. Timer Management            Yes      Yes        Yes       No        Yes
  115. Device-Independent I/O      No       No         No        Yes       Yes
  116. Stream I/O                  $495*    No         No        Yes       Yes
  117. OS RAM/ROM Size (Bytes)     5K-40K   4K-20K     12K-16K   44K+      80K-200K
  118.  
  119. * Serial port only
  120.  
  121.  
  122. OS Libraries And            Byte-
  123. Development Envrionment:    BOS      Nucleus    RXTC      SPOX      Helios
  124. --------------------------  ------   -------    ----      ----      ------
  125. Includes C Compiler/ASM     No       No         No        No        Yes
  126. C Run-Time Library          No       No         No        $2K       Yes
  127. DSP Math Library            No       $1K        No        $4K       Q2 1993
  128. Image Processing Library    No       No         No        No        Q3 1993
  129. X Windows XR5 Library       No       No         No        No        $930
  130. Ethernet Library            No       $9.5K      No        No        $1K-1.3K
  131. Source Code Included        Yes      Yes        Yes       No        No
  132. Source Code Type            C        C          ASM & C   ASM & C   ASM & C
  133. Development License Type    Site     Prod Line  Site      Computer  Computer
  134. Run-Time License Fee        None     None       None      $25-200   $25-300
  135. Development License Cost    $2K      $5K        $1K-4.2K  $6K-12K   $3.9K-5.4K
  136. Demo Disk Available         ?        Yes        Yes       No        No
  137.  
  138.  
  139.                             Byte-
  140. OS System-Level Debugger:   BOS      Nucleus    RXTC      SPOX      Helios
  141. -------------------------   -----    -------    ----      ----      ------
  142. Basic Debugging             Yes      Yes        Yes       Yes       Yes
  143. Performance Timer           Yes      Yes        No        Yes       Yes
  144. Debugger Cost               $295     $750       $0        $5K       $900
  145.  
  146.  
  147.  
  148. 'Byte-BOS' is available from:
  149.  
  150.    Byte-BOS                               Phone:     (619) 788-7288
  151.    P.O. Box 3067                          Toll Free: (800) 788-7288
  152.    Del Mar, CA    92014
  153.  
  154.    Supported DSPs: TI 320C2x/C3x/C5x
  155.    Other CPUs:     80x86, V25/V35/V40/V50, Z80, Z180, 64180, 37700,
  156.                    680x0, 68332, 68340, 68302, 
  157.                    8051, 8096, 80188/86, 68HC11, 68HC16, 6301/3
  158.  
  159.  
  160. 'Helios' (for distributed parallel processing) is available from:
  161.  
  162.    Distributed Software (Perihelion)      Phone:     +44 (0) 749-344345
  163.    The Maltings                           Fax:       +44 (0) 749-344977
  164.    Charlton Road, Shepton Mallet          Email:     jon@perisl.co.uk
  165.    Somerset, United Kingdom  BA4 5QE      Tech Info: techsupp@perisl.co.uk
  166.  
  167.    Transtech Parallel Systems Corp.       Email:     transtech@transtech.com
  168.    Phone:     +1 (607) 257-6502           Fax:       +1 (607) 257-3980
  169.  
  170.    Traquair Data Systems                  Email:     sjb@TC.Cornell.EDU
  171.    Phone:     +1 (607) 272-4417           Fax:       +1 (607) 272-6211
  172.  
  173.    Ariel Corporation                      Email:     ariel@ariel.com
  174.    Phone:     +1 (908) 249-2900           Fax:       +1 (908) 249-2123
  175.  
  176.    Also Sonitech and MIZAR
  177.  
  178.    Supported DSPs: TI 320C40
  179.    Other CPUs:     T400/T800, ARM
  180.  
  181.  
  182. 'Nucleus' is available from:
  183.  
  184.    Accelerated Technology                 Phone:     +1 (205) 661-5770
  185.    P.O. Box 850245                        Toll free: +1 (800) 468-NUKE
  186.    Mobile, Alabama 36685, USA             Fax:       +1 (205) 661-5788
  187.  
  188.    Supported DSPs: TI 320C2x/C3x/C4x/C5x, Motorola 56xxx, Analog Devices 21xxx
  189.    Other CPUs:     Am29xxx, R3000, SPARC, i960, 680xx, 683xx, 80x86
  190.  
  191.  
  192. 'RTXC' and 'RTXC/MP' (a parallel processing version) are available from:
  193.  
  194.    AT Barrett & Associates                Phone:     +1 (713) 728-9688
  195.    11501 Chimney Rock                     Toll free: +1 (800) 525-4302
  196.    Houston, Texas  77035                  Fax:       +1 (713) 728-9688
  197.  
  198.    Supported DSPs: TI 320C3x
  199.    Other CPUs:     680x0, 68332/331/340, 68302, 68HC16, 68HC11, 6803,
  200.                    80x86, 80x96, 80x51, T400/800, Z80/Z180
  201.                    
  202.  
  203. 'SPOX' and 'SPOX-MP' (a parallel-processing version) are available from:
  204.  
  205.    Spectron Microsystems                  Phone:     +1 (805) 967-0503
  206.    5266 Hollister Ave                     Fax:       +1 (805) 683-4995
  207.    Santa Barbara, CS 93111, USA
  208.  
  209.    Supported DSPs: TI 320CC3x/C4x/C5x, Motorola 96002/56xxx,
  210.                    Analog Devices 21xxx
  211.  
  212. Q6. Manufacturer's addresses and telephone numbers.
  213.  
  214. Analog Devices
  215. 1 Technology Way
  216. P.O. Box 9106
  217. Norwood, MA  02062-9106
  218. Phone: (617) 329-4700
  219. Phone: (617) 461-3672 (DSP applications assistance)
  220. Phone: (617) 461-3881 (DSP marketing)
  221.  
  222. -----
  223.  
  224. Analogic
  225. 8 Centennial Dr.
  226. Peabody, MA  01960-7987
  227. Phone: (508) 977-3000 x. 3468
  228. FAX: (408) 977-9220
  229.  
  230. -----
  231.  
  232. Analogical Systems
  233. 2916 Ramona St.
  234. Palo Alto, CA 94306
  235. (415) 32-3232
  236. Fax: (415) 323-4222
  237. Email: cole@analogical.com
  238.  
  239. -----
  240.  
  241. Ariel Corp.
  242. 433 River Road
  243. Highland Park, NJ 08904
  244. Phone: (908) 249-2900
  245. FAX: (908) 249-2123
  246. BBS: (908) 249-2124
  247. Email: ariel@ariel.com
  248.  
  249. -----
  250.  
  251. AT&T Microelectronics
  252. Dept. AL-520404200
  253. 55 Union Blvd.
  254. Allentown, PA  18103
  255. Phone: (800) 372-2447
  256. FAX: (215) 778=4106
  257.  
  258. -----
  259.  
  260. Atlanta Signal Processors, Inc. (ASPI)
  261. 770 Spring St.
  262. Atlanta, GA 30308
  263. Phone: (404) 892-7265
  264. FAX: (404) 892-2512
  265.  
  266. ----
  267.  
  268. Berkeley Camera Engineering
  269. 3616 Skyline Drive
  270. Hayward, CA 94542
  271. Phone: (510) 889-6960
  272. FAX: (510) 889-7606
  273. Email: mikep@nikon.ssl.berkeley.edu
  274.  
  275. -----
  276.  
  277. BittWare Research Systems, Inc.
  278. Inner Harbor Center, 8th Floor
  279. 400 East Pratt Street
  280. Baltimore, MD 21202
  281. Phone: (800) 848-0435
  282. FAX: (410) 783-7375 
  283.  
  284. -----
  285.  
  286. Bridgenorth Signal Processing, Inc.
  287. P.O. Box 469
  288. Custer, WA  98240
  289. Phone: (604) 538-0003
  290. FAX: (604) 538-9073
  291.  
  292. -----
  293.  
  294. Catalina Research Inc.
  295. Colorado Springs
  296. (719) 531-5767
  297.  
  298. -----
  299.  
  300. CMS GmbH
  301. Postfach 100202
  302. Einsteinstrabe 61-63
  303. D-7505 Ettlingen
  304. Germany
  305. Phone: (07243) 31001
  306.  
  307. -----
  308.  
  309. Communication Automation and Control, Inc. (CACI)
  310. 1642 Union Blvd., Suite 200
  311. Allentown, PA  18103-1510
  312. (215) 776-6669
  313. FAX: (215) 770-1232
  314.  
  315. -----
  316.  
  317. Computer Continuum
  318. 75 Southgate Avenue
  319. Daly City,  CA 94015
  320. (415) 755-1978
  321.  
  322. -----
  323.  
  324. Crystal Semiconductor Corp.
  325. P.O. Box 17847
  326. Austin, TX  78760
  327. Phone: (512) 445-7222
  328. FAX: (512) 445-7581
  329.  
  330. -----
  331.  
  332. Current Technology, Inc.
  333. 99 Madbury Road
  334. Durham, N.H. 03824
  335. Phone: (603) 868-2270
  336. FAX: (603) 868-1352
  337.  
  338. -----
  339.  
  340. Data Translation
  341. 100 Locke Dr.
  342. Marlboro, MA 01752-1192
  343. (508) 481-3700
  344. (800) 525-8528
  345.  
  346. -----
  347.  
  348. Dalanco Spry
  349. 89 Westland Ave.
  350. Rochester, NY  14618
  351. Phone: (716) 473-3610
  352.  
  353. -----
  354.  
  355. DigiDesign Inc
  356. 1360 Willow Road, Suite 101
  357. Menlo Park CA 94025
  358. Tel: 010 1 415 327 8811
  359. FAX: 010 1 415 327 0777
  360.  
  361. -----
  362.  
  363. DSP Research
  364. 391 Balsam Ave. (OR Possibly: 1095 E. Duane Ave) {Someone clarify?}
  365. Sunnyvale, CA 94086
  366. Phone: (408) 773-1042
  367. FAX: (408) 736-3451
  368.  
  369. -----
  370.  
  371. DSP Software Engineering
  372. 165 Middlesex Tpk, Suite 206
  373. Bedford, MA  01730
  374. (617) 275-3733
  375. (617) 275-4323 (fax)
  376. dspse.bedford@channel1.com
  377.  
  378. -----
  379.  
  380. EnterTec, Inc.
  381. P.O. Box 8858
  382. Richmond, VA 23225
  383. Phone: (804)353-7133
  384. FAX: (804) 353-7134
  385.  
  386. -----
  387.  
  388. Hollis Electronics Co.
  389. 5 Northern Blvd., Unit 13
  390. Amherst, NH  03031
  391. Phone: (603) 598-4640
  392.  
  393. -----
  394.  
  395. Image & Signal Processing
  396. 120 Linden Avenue
  397. Long Beach CA 90802
  398. Phone: (213) 495-9533
  399. FAX: (213) 495-1258
  400.  
  401. ----
  402.  
  403. Innovative Devices, Inc.
  404. 1119 Damelart Way
  405. Brentwood Bay, B.C.  V0S 1A0
  406. Canada
  407. Phone: (604) 652-5240 
  408.  
  409. -----
  410.  
  411. Integrated Motions, Inc. (IMI)
  412. 758 Gilman St.
  413. Berkeley, CA  94710
  414. (510) 527-5810
  415. FAX: (510) 527-7843
  416.  
  417. -----
  418.  
  419. Integrated Technologies Solutions, Inc.
  420. 402 Chestnut Ln.
  421. East Meadow, NY  11554
  422. (516) 481-0857
  423. FAX: (516) 292-3115
  424.  
  425. -----
  426.  
  427. Intellibit
  428. P.O. Box 9785
  429. McLean, VA  22102-0785
  430. Phone: (703) 442-4781
  431. FAX: (703) 442-4784
  432.  
  433. -----
  434.  
  435. Ixthos, Inc.
  436. 12210 Plum Orchard Drive
  437. Silver Spring, MD  20904
  438. Phone: (301) 890-1000
  439.  
  440. -----
  441.  
  442. KINETICSYSTEMS
  443. in USA:
  444. William Ponton
  445. Tel: 609-921-2088 
  446. FAX: 609-683-9633
  447. in Europe:             
  448. Tel: 41-22-798-4445    
  449. FAX: 41-22-798-0525  
  450.  
  451. -----
  452.  
  453. Logabex
  454. ZI de Montaudran
  455. 3 Avenue Didier Daurat
  456. 31400 Toulouse
  457. France
  458. Phone: (33) 61-80-94-37
  459.  
  460. -----
  461.  
  462. Loughborough Sound Images Ltd
  463. The Technology Centre
  464. Epinal Way
  465. Loughborough Leics LE11 OQE
  466. England
  467. Phone: +44 (0)509 231843
  468. FAX: +44 (0)509 262433
  469. N.B. U.S. distributor is Spectrum Signal Processing (see below)
  470.  
  471. -----
  472.  
  473. Mizar
  474. 2410 Luna Rd.
  475. Carrolton, TX 75006
  476. (214) 277-4600
  477. FAX: (214) 277-4666
  478.  
  479. -----
  480.  
  481.  
  482. Motorola Corp.
  483. DSP Operation
  484. Mail Drop OE314
  485. 6501 William Cannon Drive, West
  486. Austin, TX 78735-8598
  487. Phone: (512) 891-2030 (marketing)
  488. BBS: (512) 891-DSP1 (300/1200 bps)
  489. BBS: (512) 891-DSP2 (1200 bps V.22)
  490. BBS: (512) 891-DSP3 (2400 bps V.22bis)
  491.  
  492. -----
  493. Motorola Ltd.
  494. Motorola Literature Centre
  495. 88 Tanners Drive
  496. Blakelands Milton Keynes
  497. MK145BP
  498. Great Britain
  499.  
  500. -----
  501.  
  502. National Instruments
  503. 6504 Bridge Point Parkway
  504. Austin, TX  78730-5039
  505. Phone: (512) 794-0100
  506. Phone: (800) 433-3488
  507. FAX: (512) 794-8411
  508.  
  509. -----
  510.  
  511. Natural Microsystems Corp.
  512. 8 Erie Drive
  513. Natick, MA 01760-1313
  514. Phone: (800) 533-6120
  515.  
  516. -----
  517.  
  518. N.E.L.
  519. Systems Center
  520. Advanced Computing Group
  521. East Kilbride
  522. Glasgow
  523. G75 0QU
  524. United Kingdom
  525. Phone: +44 (0)3552 72838
  526. FAX: +44 (0)3552 72979
  527.  
  528. -----
  529.  
  530. Pacific Cyber/Metrix, Inc
  531. 6805 Sierra Ct.
  532. Dublin, CA  94568-2615
  533. (510) 829-8700
  534. FAX: (510) 829-9796
  535.  
  536. -----
  537.  
  538. Pentek, Inc.
  539. 55 Walnut St.
  540. Norwood, NJ  07648
  541. Phone: (201) 767-7100
  542. FAX: (201) 767-3994
  543.  
  544. -----
  545.  
  546. Precision Design Services PTY LTD,
  547. P.O. Box 61
  548. Berwick, Victoria, 3806
  549. Australia
  550. TEL: +61 3 796 2003
  551. FAX: +61 3 796 1500
  552. -----
  553.  
  554. Prime Ideal
  555. Joseph Virzi
  556. 2124 Parker Street #300
  557. Berkeley, CA 94704
  558. Phone: (415) 513-8062
  559.  
  560. -----
  561.  
  562. Quantawave
  563. (508) 481-9802
  564.  
  565. -----
  566.  
  567. Saddle Point Systems
  568. 3960 Greenwood Ave.
  569. Oakland, CA  94602
  570. Phone: (510) 530-0971
  571.  
  572. -----
  573.  
  574. Sharp Microelectronics Technology, Inc.
  575. 5700 NW Pacific Rim Blvd
  576. Camas, WA 98607
  577. Phone: (206) 834-8711
  578. FAX: (206) 834-8611
  579.  
  580. -----
  581.  
  582. Signal-Data
  583. 63 Vester Paradisvej
  584. DK-2840 Holte
  585. Denmark
  586. Phone: (45) 30 42 6054
  587. Phone: (301) 890-1000
  588.  
  589. -----
  590.  
  591. Sonitech International Inc.
  592. 14 Mica Ln.
  593. Wellesley, MA 02181
  594. (617) 235-6824
  595. FAX: (617) 235-2531
  596.  
  597. -----
  598.  
  599. Specom Technologies Corp.
  600. 3673 Enochs Street
  601. Santa Clara, CA 95051
  602. Phone: (408) 736-7832
  603. FAX: (408) 736-7861
  604.  
  605. -----
  606.  
  607. Spectral Innovations
  608. Santa Clara, CA
  609. (408) 727-1314
  610.  
  611. -----
  612.  
  613. Spectrum Signal Processing
  614. Westborough Office Park
  615. 1500 West Park Drive
  616. Westborough MA 01581 USA
  617. Phone: (508) 366-7355
  618. FAX: (508) 89988 2772
  619.  
  620. -----
  621.  
  622. Tartan Inc.
  623. 300 Oxford Drive
  624. Monroeville, PA 15146  
  625. Phone: (412) 856-3600
  626. FAX: (412) 856-3636
  627. Email: englert@tartan.com 
  628.  
  629. -----
  630.  
  631. Texas Instruments Incorporated
  632. P.O. Box 1443  M/S 737
  633. Houston, TX  77251-1443
  634. (713) 274-2320   (voice)
  635. (713) 274-2324   (fax)
  636. (713) 274-2323   (BBS  300-9600 N,8,1)
  637. 4389750@mcimail.com   (Internet email)
  638.  
  639. -----
  640.  
  641. Townshend Computer Tools 
  642. Phone: (514) 289-9123,
  643. FAX: (514) 289-1831
  644. E-Mail: datlink%tt@cam.org
  645.  
  646. -----
  647.  
  648. Transtech Parallel Systems Corp.
  649. 20 Thornwood Dr.
  650. Ithica, NY 14850-1263
  651. (607) 257-6502
  652. Fax: (607) 257-3980
  653.  
  654. Transtech Parllel Systems Corp.
  655. P.O. Box 1596
  656. Culver City, CA 90232
  657. (310) 838-0770
  658. Fax: (310) 280-0697
  659.  
  660. -----
  661.  
  662. Traquair Data Systems
  663. Judd Falls Plaza, Suite 80
  664. Ithica, NY 14850
  665. Phone: (607) 272-4417
  666. FAX: (607) 272-6211
  667.  
  668. -----
  669.  
  670. Tucker-Davis Technologies
  671. 4639 NW 6th St., Suite A
  672. Gainesville, FL  32609
  673. (904) 375-1623
  674. FAX: (904) 375-4523
  675.  
  676. -----
  677.  
  678. Valley Technologies, Inc.
  679. RD #4, Rt. 309
  680. Tamaqua, PA  18252
  681. (717) 668-3737
  682. FAX: (717) 668-6360
  683.  
  684. -----
  685.  
  686. Virga, Inc.
  687. 4901 Morena Blvd.
  688. Bldg. 502
  689. San Diego, CA 92117
  690. (619) 483-1197
  691.  
  692. -----
  693.  
  694. Wavetron Microsystems
  695. 1135 Oddstad Drive
  696. Redwood City, CA 94063
  697. Phone: (415) 366-5371 or (415) 366-5375
  698.  
  699. =============================================================================
  700. Questions, comments, or submissions for this FAQ should be mailed to
  701. comp-dsp-faq@ohm.Berkeley.EDU, ...!ucbvax!ohm!comp-dsp-faq.  Thanks!
  702.